home *** CD-ROM | disk | FTP | other *** search
/ Gigarom 1 / Gigarom Macintosh Archives (Quantum Leap)(CDRM1080320)(1993).iso / FILES / DEV / A-B / add images.cpt / Result.h < prev    next >
Text File  |  1989-05-31  |  1KB  |  43 lines

  1. /* ===================================
  2.  
  3. File: Result.h
  4. Function: Header for this window
  5. History: 4/27/89 Original by Prototyper.
  6.  
  7. ================================= */
  8.  
  9.  
  10. /* Initialize us so all our routines can be activated */
  11. void  Init_Result(void);
  12.  
  13. /* Open our window and draw everything */
  14. void  Open_Result(void);
  15.  
  16. /* Update our window, someone uncovered a part of us */
  17. void  UpDate_Result(WindowPtr  whichWindow);
  18.  
  19. /*  Handle action to our window, like controls  */
  20. void  Do_Result(EventRecord  *myEvent);
  21.  
  22. /*  Do window resizing, resize the scrollbars  */
  23. void  Resized_Result( WindowPtr  whichWindow);
  24.  
  25. /* -- we need activate and deactivate the window -- hiding scroll bars */
  26.  
  27. void save_result(void);
  28. /* saves results PICT2 to a PICT file -- called when SAVE PICT menu item chosen */
  29.  
  30. void copy_result(void);
  31. /* copys a PICT from the result pixmap into the clipboard */
  32.  
  33. void cut_result(void);
  34. /* copys a PICT from the result pixmap into the clipboard, and then clears the pixmap */
  35.  
  36. void grow_result (Point * where, WindowPtr whichWindow);
  37. void zoom_result (Point * where, WindowPeek whichWindow, short code);
  38. void activate_result ( WindowPtr whichWindow, long modifiers);
  39.  
  40. void crop_result(void);
  41. void clear_result(void);
  42.  
  43.